Small doc fixes
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 12 Jul 2007 00:57:23 +0000 (00:57 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 12 Jul 2007 00:57:23 +0000 (00:57 +0000)
svn path=/trunk/; revision=18451

ChangeLog
gtk/gtkbindings.c
gtk/gtkrange.c
gtk/gtkscalebutton.c

index 8595201de21b150280ebd06a1eab5abf2e9fb55b..714d7ef0b86299c6fbbfc8f148b13aab7706ac42 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-07-11  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkrange.c:
+       * gtk/gtkbindings.c: 
+       * gtk/gtkscalebutton.c: Small doc fixes.
+
 2007-07-11  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkplug.c:
index 84f6560268969d986f2077d5e9e7b19d0e589a5e..2fa4665aee08d182955fea2d81c1081a71dd16e8 100644 (file)
@@ -565,7 +565,7 @@ gtk_binding_entry_activate (GtkBindingEntry *entry,
  * gtk_binding_set_new:
  * @set_name: unique name of this binding set
  *
- * Gtk+ maintains a global list of binding sets. Each binding set has
+ * GTK+ maintains a global list of binding sets. Each binding set has
  * a unique name which needs to be specified upon creation.
  *
  * Return value: new binding set
index 883fb5d1b9fc724f7021d0358c827f9eb5eb94bf..bd95351adc6717bf46a4048d8fd22f8415b93f80 100644 (file)
@@ -251,6 +251,12 @@ gtk_range_class_init (GtkRangeClass *class)
   class->slider_detail = "slider";
   class->stepper_detail = "stepper";
 
+  /**
+   * GtkRange::value-changed:
+   * @range: the #GtkRange
+   *
+   * Emitted when the range value changes.
+   */
   signals[VALUE_CHANGED] =
     g_signal_new (I_("value_changed"),
                   G_TYPE_FROM_CLASS (gobject_class),
@@ -270,6 +276,13 @@ gtk_range_class_init (GtkRangeClass *class)
                   G_TYPE_NONE, 1,
                   G_TYPE_DOUBLE);
   
+  /**
+   * GtkRange::move-slider:
+   * @range: the #GtkRange
+   * @step: how to move the slider
+   *
+   * Virtual function that moves the slider. Used for keybindings.
+   */
   signals[MOVE_SLIDER] =
     g_signal_new (I_("move_slider"),
                   G_TYPE_FROM_CLASS (gobject_class),
index 4c2bae7af2946277bedb85c9d8f13ec1347f8b88..e6beb18f4afc3f6eb1a8a7d700456b222a1633bb 100644 (file)
@@ -233,6 +233,7 @@ gtk_scale_button_class_init (GtkScaleButtonClass *klass)
   /**
    * GtkScaleButton::value-changed:
    * @button: the object that received the signal
+   * @value: The new value
    *
    * Emitted when the value field has changed.
    *